Given no missing fragment definitions, When include missing fragments, Then return empty string

Tests this scenario:

query SomeQuery { someObjectA { ...fragmentA } someObjectB { ...fragmentB } }

fragment fragmentA on SomeObjectA { id }

fragment fragmentB on SomeObjectB { id }

(All fragment definitions live in the query file)